home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_100 / 177_01 / shnstall.bat < prev    next >
DOS Batch File  |  1986-01-10  |  800b  |  23 lines

  1. echo off
  2. cls
  3. echo This batch file installs the Shell and its associated files on a hard
  4. echo disk (presumed drive C).   It will create a directory off the root called
  5. echo \SHBIN and place them there, then it will boot the Shell.   You will want
  6. echo to eventually place SH.EXE and CONFIG.SH in a directory on the Path for
  7. echo regular use.   If you do NOT want to continue this, press Ctrl-C or
  8. echo Ctrl-Break, otherwise...
  9. pause 
  10. cls
  11. echo  Making the directory: C:\SHBIN 
  12. md c:\shbin
  13. echo Making the log directory: C:\SHBIN\LOGS
  14. md c:\shbin\logs
  15. echo Now using cp to copy the utilities into C:\SHBIN
  16. cp *.* c:\shbin
  17. pause
  18. cls
  19. echo The Shell is now installed on the Hard disk, press Ctrl-Break if you do
  20. echo NOT want to start the Shell, otherwise...
  21. pause
  22. sh -m menu;c:;help
  23.